home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr44 / xlib06p1.zip / XCIRCLE.H < prev    next >
C/C++ Source or Header  |  1995-03-05  |  879b  |  41 lines

  1. /*-----------------------------------------------------------------------
  2. ;
  3. ; XCIRCLE - header file
  4. ;
  5. ;   This module was written by Matthew MacKenzie
  6. ;   matm@eng.umd.edu
  7. ;
  8. ;
  9. ; ****** XLIB - Mode X graphics library                ****************
  10. ; ******                                               ****************
  11. ; ****** Written By Themie Gouthas                     ****************
  12. ;
  13. ; egg@dstos3.dsto.gov.au
  14. ; teg@bart.dsto.gov.au
  15. ;
  16. ;----------------------------------------------------------------------*/
  17.  
  18. #ifndef _XCIRCLE_H_
  19. #define _XCIRCLE_H_
  20. #include "xdefs.h"
  21.  
  22. void x_circle (
  23.     xScreenCoord_t Left,
  24.     xScreenCoord_t Top,
  25.     int Diameter,
  26.   xColor_t Color,
  27.     xPageHandle_t ScreenOffs
  28. );
  29.  
  30. void x_filled_circle (
  31.     xScreenCoord_t Left,
  32.     xScreenCoord_t Top,
  33.     int Diameter,
  34.   xColor_t Color,
  35.     xPageHandle_t ScreenOffs
  36. );
  37.  
  38.  
  39. #endif
  40.  
  41.